home *** CD-ROM | disk | FTP | other *** search
/ MacHack 1995 / MacHack 1995.toast / Presentations / Presentations ’91 / MPW Stand-Alone Libraries / UMakeSAGlobals.p < prev    next >
Text File  |  1991-02-10  |  459b  |  26 lines

  1. UNIT UMakeSAGlobals;
  2.  
  3. INTERFACE
  4.  
  5. USES
  6.     { • Implementation use }
  7.     PasLibIntf, ErrMgr, OSUtils, Memory, ToolUtils, Errors;
  8.  
  9. CONST
  10.     { • Global Constants • }
  11.     kDfltFileType        = 'rsrc';
  12.     kDfltFileCreator    = 'RSED';
  13.     kDfltMainSeg        = 'DUDE';
  14.     kDfltOtherSeg        = 'DUDE';
  15.     kDfltRsrcID            = 128;
  16.     kSASuffix            = '.dude';
  17.  
  18. TYPE
  19.  
  20.     FileSpec = RECORD
  21.         fileName:    StringHandle;    { filename to be processed }
  22.         vRefNum:    Integer;        { vRefnum of the file being processed }
  23.     END;
  24.  
  25.  
  26. END.